Update GitHub Actions to Node 24 majors and Python 3.9 - #43
Merged
slesaad merged 2 commits intoJul 23, 2026
Merged
Conversation
The runners dropped Python 3.8, so the lint workflow failed with "Version 3.8 with arch x64 not found", and the older action majors run on the now-deprecated Node 20. - lint.yml: setup-python@v1 (3.8) -> @v6 (3.9), matching the Lambda runtime and the deploy workflows; checkout@v2 -> @v5; wearerequired/lint-action@v1 -> @v2. - deploy.yml / update_pyquarc.yml: checkout@v2 -> @v5, configure-aws-credentials@v1 -> @v4, setup-python@v2 -> @v6. - deploy.yml: setup-node@v2 -> @v5 and bump the CDK build Node from the EOL 14.15.1 to 20 LTS.
The lint workflow flagged pre-existing issues in the deploy package: - flake8 F401: remove unused DockerImage import in stack.py. - black: reformat the BundlingOptions command list onto separate lines and drop the extra blank line in app.py. All 8 tracked Python files now pass `black --check --line-length 100` and `flake8`.
slesaad
changed the base branch from
staging
to
fix/validate-path-traversal-vdp2966
July 23, 2026 20:30
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The lint workflow is failing:
ubuntu-latestrunners no longer ship Python 3.8, and the older action majors (@v1/@v2) run on the now-deprecated Node 20.Changes
setup-python@v1(3.8) →@v6(3.9, matching the Lambda runtime and the deploy workflows);checkout@v2→@v5;wearerequired/lint-action@v1→@v2.checkout@v2→@v5,configure-aws-credentials@v1→@v4,setup-python@v2→@v6.setup-node@v2→@v5, and bump the CDK build Node from the EOL14.15.1to20LTS.All three workflow files parse as valid YAML.
🤖 Generated with Claude Code